home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / asm / valarrow.zip / TED.DOC < prev    next >
Text File  |  1994-03-02  |  3KB  |  69 lines

  1. TED
  2. Command
  3.  
  4. Tom Kihlken 
  5. 1988 No. 19 (Utilities)
  6.  
  7.  
  8. Purpose:    A small, full-screen editor for line-oriented files of up to 
  9. 64K in length that supports scrolling, cut, copy, paste, and printing
  10. operations, and permits entry of all members of the IBM character set.
  11.     
  12. Format:    TED [filespec]
  13.     
  14. Remarks:    TED will open and read a file whose name (and path, if required)
  15. are supplied initially.  If no filespec is provided it will open a new file and
  16. prompt for a filename when the Save and Exit command (F7) is given.  The
  17. original of a modified file is saved with a .BAK extension.  The Abort command
  18. (F1), when verified, abandons any modifications and leaves the original file
  19. intact.
  20.  
  21.     Lines may be of any length, and each must be terminated by pressing
  22. Enter.  Lines longer than the screen width display a diamond in the rightmost
  23. column.  Offscreen characters (up to 248 columns) may be viewed by using the
  24. Ctrl-<arrow> keys.  Lines may be broken by pressing Enter at any point, and may
  25. be conflated by pressing Delete at the line end.
  26.  
  27. F1 -- (Abort) exit with out saving.
  28. F2 -- (Cut) removes blocked text to the paste buffer.
  29. F3 -- (Print) Pressing F3 prints the blocked text. 
  30. F4 -- (Mark) A block of text is defined by toggling on the Mark command (F4)
  31.       and moving the cursor with the arrow keys.  The Marked area is shown in
  32.       inverse video.
  33. F5 -- (Copy) copies blocked text to the paste buffer.
  34. F6 -- (Paste) inserts text from the paste buffer at any point where the 
  35.       cursor is located.  The paste buffer remains intact until another 
  36.       section is cut or copied.
  37. F7 -- (Exit) Save and Exit
  38. F8 -- (Find) Finds a String of characters.
  39. F9 -- (Del l) deletes the entire line. 
  40. F10 - (Udel l) restores the most recent deletion of F9.  
  41.  
  42. Ctrl F1 -- (Open) Opens a new file.
  43. Ctrl F2 -- (New) Cuts away all text from the file buffer. Other buffers
  44.        remain unchanged
  45. Ctrl F5 -- (Copy2d) copies blocked text to a disk file.
  46. Ctrl F6 -- (Merge) inserts text from a disk file.
  47. Ctrl F7 -- (Save) saves with out exiting.
  48. Ctrl F8 -- (Find_r) finds another occurance of the same string.
  49.  
  50.  
  51.     The Home and End keys move the cursor to the beginning and end of the
  52. current screen line; the Tab key moves to the next column evenly divisible by
  53. eight.  Text is entered in Insert mode by default; pressing the Insert key
  54. toggles to overstrike mode.  TED configures itself to the display in use and
  55. supports EGA and VGA text mode 3, the standard 80 columns by 25 rows.
  56. PgUp and PgDn scroll the file by the number of rows displayed, minus 5.  
  57. Ctrl-PgUp and Ctrl-PgDn move to the top and bottom of the file.  
  58.  
  59.     Any character in the IBM set can be entered by pressing the Alt key,
  60. typing its ASCII value on the numeric keypad, then releasing the Alt key. 
  61.  
  62.  
  63.  
  64. I HOPE YOU ENJOY THE CHANGES I MADE TO THE "TED" SOURCE CODE.
  65. I ADD A FEW THINGS TO MAKE MY PROGAMMING EASIER, AND I AM
  66. PASSING THE SOURCE CODE ON TO YOU SO YOU CAN DO THE SAME.
  67. ROGER SCHROLL
  68.  
  69.